home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / text / show / jmore03.lzh / jmoresrc.LZH / jFont.h < prev    next >
C/C++ Source or Header  |  1992-10-18  |  559b  |  32 lines

  1. /*
  2.  *    jfont.h
  3.  */
  4.  
  5. #ifndef    _JFONT_H_
  6. #define    _JFONT_H_
  7.  
  8. #define    FNAMELEN    80    /* file name length */
  9. #define    READ_BINARY    "rb"
  10. #define    WRITE_BINARY    "wb"
  11.  
  12. #define    JFONTPORT    "jFont.port"    /* MsgPort name */
  13. #define    NORMAL_PRI    0    /* task priority is 0 */
  14.  
  15. struct    jFontMsg    {    /* my own Message structure */
  16.     struct    Message    msg;
  17.     USHORT    kanji;
  18.     struct    TextFont    *font;
  19. };
  20.  
  21. #define    REMOVE_JFONT    (-1)
  22. #define    ANK_FONT_CODE    0
  23.  
  24. enum    knjtype {
  25.     ANK, SYM1, SYM2, ALNM, HIRA, KATA,
  26.     GREEK, RUSSIAN, KEISEN, JIS1 = 16, JIS2 = 48,
  27. };
  28.  
  29. #define    FONT_SIZE    16
  30.  
  31. #endif    /* _JFONT_H_ */
  32.